From 39889461d4e352779fef1d942c52177e96976c51 Mon Sep 17 00:00:00 2001 From: Mikkel Kroman Date: Tue, 17 May 2016 15:08:29 +0200 Subject: [PATCH] Revert "Maybe fix failing build on OS X rust beta" This reverts commit 3fb3fdc82fdf3a1ea060d51076c86c71fe1f405b. --- tests/test_cargo_test.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/test_cargo_test.rs b/tests/test_cargo_test.rs index 0eb12d494..cf6f50e8d 100644 --- a/tests/test_cargo_test.rs +++ b/tests/test_cargo_test.rs @@ -2048,10 +2048,10 @@ test!(selective_test_optional_dep { }); test!(only_test_docs { - let p = project("foo_docs") + let p = project("foo") .file("Cargo.toml", r#" [package] - name = "foo_docs" + name = "foo" version = "0.0.1" authors = [] "#) @@ -2067,13 +2067,13 @@ test!(only_test_docs { pub fn bar() { } "#) - .file("tests/foo_docs.rs", "this is not rust"); + .file("tests/foo.rs", "this is not rust"); p.build(); assert_that(p.cargo("test").arg("--doc"), execs().with_status(0).with_stdout(&format!("\ -[COMPILING] foo_docs v0.0.1 ([..]) -[DOCTEST] foo_docs +[COMPILING] foo v0.0.1 ([..]) +[DOCTEST] foo running 1 test test bar_0 ... ok -- 2.30.2